home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 May / Software of the Month Club 1996 May.iso / mac / ISO9660 / OS2 / YAOS / YAOSINST.CMD < prev   
Encoding:
Text File  |  1996-01-15  |  550 b   |  18 lines  |  [TEXT/hscd]

  1. /* YAOS installation program */
  2.  
  3. call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs"
  4. call SysLoadFuncs
  5.  
  6. say "Installing YAOS version 1.00 (c) 1996 by LEE Cjin Pheow"
  7. say " "
  8.  
  9. curdir = directory()
  10.  
  11. /* create a new desktop object for YAOS */
  12. If SysCreateObject("WPProgram", "Yet Another OS/2 Shell v1.00", "<WP_DESKTOP>",,
  13.      "EXENAME="curdir"\YAOS.EXE;PARAMETERS=-ws yaos.rc;STARTUPDIR="curdir, "replace") Then
  14.    Say 'YAOS program object has been created successfully.'
  15.    Else Say 'Cannot create YAOS program object!'
  16.  
  17. exit
  18.